using UnityEditor;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace MagicaCloth
{
    public class MagicaPlaneColliderGizmoDrawer
    {
        static void DrawGizmo(MagicaPlaneCollider scr, GizmoType gizmoType)
        {
            throw new NotImplementedException();
        }

        public static void DrawGizmo(MagicaPlaneCollider scr, bool selected)
        {
            throw new NotImplementedException();
        }
    }
}